/* ÀÁÈËÍ¼¿â ËÑ¼¯ÕûÀí www.lanrentuku.com */

/*--------------------------------------------
container
--------------------------------------------*/
div#container {
     width: 100%;
     margin: 0 auto;
     overflow: hidden;
}
div.examples_body {
}


/* The main banner unordered list */
.probannerHolder {}

/* Hiding the bullets of the li elements: */
.probannerHolder li {
	 list-style: none;
	 display: inline;
	 float:left; margin-right:15px;
}

/* The banner divs */
.probanner {
     width: 390px;
	 height: 500px;
	 position: relative;
	 overflow: hidden;
	 float: left;
	 display: inline;
}

/* The banner divs */
.probanner img {
	 display: block;
	 border: none;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.probanner a:hover img {
	 opacity: 0.5;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

/* The dark animated divs */
.probanner div {
	 position: absolute;
	 z-index: 100;
	 background-color: #222;
	 width: 60px;
	 height: 60px;
	 cursor: pointer;

	/*	Setting a really big value for border-radius
		will make the divs perfect circles */
	 -moz-border-radius:100px;
	 -webkit-border-radius:100px;
	 border-radius:100px;
}

/*	Positioning the animated divs outside the
	corners of the visible banner area: */
.probanner .cornerTL { left:-63px; top:-63px; }
.probanner .cornerTR { right:-63px; top:-63px; }
.probanner .cornerBL { left:-63px; bottom:-63px; }
.probanner .cornerBR { right:-63px; bottom:-63px; }

/* The "Visit Company" text */
.probanner p {
     width: 100%;
	 left: 0;
	 top: 220px;
	 z-index: 200;
	 position: absolute;
	 font-family: Tahoma, Arial, Helvetica, sans-serif;
	 color: #d4c37f;
	 font-size: 20px;
	 text-align: center;
	 cursor: pointer;
	 display: none;	/* hidden by default */
	 font-weight:bold;
}


figure.effect-lily img {
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
	top: auto;
	bottom: 0;
	height: 50%;
	text-align: left;
}

figure.effect-lily h2,
figure.effect-lily p {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.effect-lily h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-lily p {
	color: rgba(255,255,255,0.6);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily:hover img,
figure.effect-lily:hover p {
	opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}